//04_Loop concept //prac_03 //wap to print table number #include #include void main() { int i; clrscr(); i=1; while (i<=10) { printf("%d \n",i*2); i++; } getch(); } /* 2 4 6 8 10 12 14 16 18 20 */